home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / scope / 001-025 / scopedisk8 / hunker / readme < prev    next >
Text File  |  1995-03-18  |  2KB  |  49 lines

  1. History of this program:
  2.     This program was written by Terry Fisher.  Its purpose: to fix some of
  3. those nasty programs that were written before people started using fast memory.
  4. Now, it can also be used as a valuable 'C' development tool, similar in function
  5. to the Assembly language Atom utility.  By running this program on your
  6. executable, you can avoid having to copy image data into chip memory.  Simply
  7. put 'Hunker <file> d=c' into your Makefile, and all initialized data will
  8. be loaded into chip memory automatically.
  9.  
  10. Usage:
  11.     This program can only be used from the CLI. The format for invocation
  12. is:  Hunker <file> [-v] [c/d/b]=[c/f/e]
  13.  
  14. Order is not important except that the file name must be the first arguement.
  15. The other arguements may be typed in any order. Their meanings follow.
  16.  
  17. -v        sets verbose mode.  It isn't really useful, but its there.
  18.  
  19. [c/d/b]=[c/f/e]    These are the switches which specify where each hunk type are
  20.         to be loaded into memory.  The characters on the left of the
  21.         '=' are the hunk type.  The characters on the right are the
  22.         type of memory to load these hunks into.
  23.         ie d=c would put all data hunks into chip memory
  24.            c=f would put all code hunks into fast memory
  25.            b=e would put all uninitialized data into either chip or fast
  26.  
  27.         Note: to change more than one type of hunk at one time, you
  28.             must have a separate argument for each hunk type.
  29.         ie     to load data into chip memory, and code into fast,
  30.             the CLI command would be:
  31.             Hunker <file> d=c c=f
  32.  
  33. Distribution:
  34.     Hunker may be freely distributed as long as: this README file is
  35. kept with it, and it is not included in any commercial distributions without
  36. my consent.  If you find this program useful, and it is going to save you
  37. several hours, I would appreciate any contribution. (If its going to make
  38. your $50 commercial software run, I feel I deserve a small contribution :-)
  39.  
  40. Terry Fisher,
  41. RR #2,
  42. Harriston, Ontario, Canada.
  43. N0G 1Z0
  44.  
  45. See also the section on ATOM in the Bantam AmigaDos Manual.
  46.  
  47. Thanks to Carolyn Scheppner at CATS for helping figure out how the loader
  48. works.
  49.